We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33aaec8 commit fad2901Copy full SHA for fad2901
src/lib.rs
@@ -3,8 +3,8 @@
3
/// ```
4
/// use rust_template_output::hello;
5
///
6
-/// let foo = hello();
7
-/// assert!(!foo.is_empty());
+/// let hello_str = hello();
+/// assert!(!hello_str.is_empty());
8
9
pub fn hello() -> &'static str {
10
"Hello, World!"
@@ -15,8 +15,8 @@ pub fn hello() -> &'static str {
15
16
/// use rust_template_output::for_feature;
17
18
-/// let foo = for_feature();
19
+/// let feature_str = for_feature();
+/// assert!(!feature_str.is_empty());
20
21
#[cfg(feature = "test_feature_1")]
22
pub fn for_feature() -> &'static str {
0 commit comments