mirror of
				https://github.com/isar/rusqlite.git
				synced 2025-10-31 13:58:55 +08:00 
			
		
		
		
	fix several typos
This commit is contained in:
		
				
					committed by
					
						 Thom Chiovoloni
						Thom Chiovoloni
					
				
			
			
				
	
			
			
			
						parent
						
							b8b1138fcf
						
					
				
				
					commit
					c33d6bfad3
				
			| @@ -1,7 +1,7 @@ | ||||
| //! `feature = "vtab"` Create virtual tables. | ||||
| //! | ||||
| //! Follow these steps to create your own virtual table: | ||||
| //! 1. Write implemenation of [`VTab`] and [`VTabCursor`] traits. | ||||
| //! 1. Write implementation of [`VTab`] and [`VTabCursor`] traits. | ||||
| //! 2. Create an instance of the [`Module`] structure specialized for [`VTab`] | ||||
| //! impl. from step 1. | ||||
| //! 3. Register your [`Module`] structure using [`Connection::create_module`]. | ||||
| @@ -680,7 +680,7 @@ impl InnerConnection { | ||||
|     } | ||||
| } | ||||
|  | ||||
| /// `feature = "vtab"` Escape double-quote (`"`) character occurences by | ||||
| /// `feature = "vtab"` Escape double-quote (`"`) character occurrences by | ||||
| /// doubling them (`""`). | ||||
| pub fn escape_double_quote(identifier: &str) -> Cow<'_, str> { | ||||
|     if identifier.contains('"') { | ||||
|   | ||||
| @@ -162,7 +162,7 @@ struct SeriesTabCursor<'vtab> { | ||||
|     row_id: i64, | ||||
|     /// Current value ("value") | ||||
|     value: i64, | ||||
|     /// Mimimum value ("start") | ||||
|     /// Minimum value ("start") | ||||
|     min_value: i64, | ||||
|     /// Maximum value ("stop") | ||||
|     max_value: i64, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user