mirror of
				https://github.com/nsnail/spectre.console.git
				synced 2025-11-01 01:25:27 +08:00 
			
		
		
		
	fixed punctuation in exception
This commit is contained in:
		 Nils Andresen
					Nils Andresen
				
			
				
					committed by
					
						 Patrik Svensson
						Patrik Svensson
					
				
			
			
				
	
			
			
			 Patrik Svensson
						Patrik Svensson
					
				
			
						parent
						
							0d72b94f9c
						
					
				
				
					commit
					638149f44b
				
			| @@ -113,7 +113,7 @@ internal sealed class MarkupTokenizer : IDisposable | ||||
|                     if (encounteredClosing) | ||||
|                     { | ||||
|                         throw new InvalidOperationException( | ||||
|                             $"Encountered unescaped ']' token at position {_reader.Position}"); | ||||
|                             $"Encountered unescaped ']' token at position {_reader.Position}."); | ||||
|                     } | ||||
|                 } | ||||
|  | ||||
| @@ -122,7 +122,7 @@ internal sealed class MarkupTokenizer : IDisposable | ||||
|  | ||||
|             if (encounteredClosing) | ||||
|             { | ||||
|                 throw new InvalidOperationException($"Encountered unescaped ']' token at position {_reader.Position}"); | ||||
|                 throw new InvalidOperationException($"Encountered unescaped ']' token at position {_reader.Position}."); | ||||
|             } | ||||
|  | ||||
|             Current = new MarkupToken(MarkupTokenKind.Text, builder.ToString(), position); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user