@@ -76,7 +76,7 @@ internal IDictionary<string, Dictionary<string, List<CssBlock>>> MediaBlocks
7676 /// Check if there are css blocks for the given class selector.
7777 /// </summary>
7878 /// <param name="className">the class selector to check for css blocks by</param>
79- /// <param name="media">optinal : the css media type (default - all)</param>
79+ /// <param name="media">optional : the css media type (default - all)</param>
8080 /// <returns>true - has css blocks for the class, false - otherwise</returns>
8181 public bool ContainsCssBlock ( string className , string media = "all" )
8282 {
@@ -92,7 +92,7 @@ public bool ContainsCssBlock(string className, string media = "all")
9292 /// selector or hierarchy selector.
9393 /// </summary>
9494 /// <param name="className">the class selector to get css blocks by</param>
95- /// <param name="media">optinal : the css media type (default - all)</param>
95+ /// <param name="media">optional : the css media type (default - all)</param>
9696 /// <returns>collection of css blocks, empty collection if no blocks exists (never null)</returns>
9797 public IEnumerable < CssBlock > GetCssBlock ( string className , string media = "all" )
9898 {
@@ -113,7 +113,7 @@ public IEnumerable<CssBlock> GetCssBlock(string className, string media = "all")
113113 /// If there is already css blocks for the same class it will check for each existing block
114114 /// if the hierarchical selectors match (or not exists). if do the two css blocks will be merged into
115115 /// one where the new block properties overwrite existing if needed. if the new block doesn't mach any
116- /// existing it will be added either to the beggining of the list if it has no hierarchical selectors or at the end.<br/>
116+ /// existing it will be added either to the beginning of the list if it has no hierarchical selectors or at the end.<br/>
117117 /// Css block without hierarchical selectors must be added to the beginning of the list so more specific block
118118 /// can overwrite it when the style is applied.
119119 /// </remarks>
0 commit comments