Fix a typo in text-view.rs (content -> view)

This commit is contained in:
mukund 2019-03-04 12:10:35 -08:00 committed by GitHub
parent 5d51ccb9ad
commit bfbdf5c26b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ use crate::{Printer, Vec2, With, XY};
///
/// // Later, possibly in a different thread
/// content.set_content("new content");
/// assert!(content.get_content().source().contains("new"));
/// assert!(view.get_content().source().contains("new"));
/// ```
#[derive(Clone)]
pub struct TextContent {
@ -198,7 +198,7 @@ impl TextView {
///
/// // Later, possibly in a different thread
/// content.set_content("new content");
/// assert!(content.get_content().source().contains("new"));
/// assert!(view.get_content().source().contains("new"));
/// ```
pub fn new_with_content(content: TextContent) -> Self {
TextView {