Do not unnecessarily use raw strings.

This commit is contained in:
Stephen Chung
2021-04-20 12:01:35 +08:00
parent a186eb8d97
commit 0f66c67f82
29 changed files with 100 additions and 103 deletions

View File

@@ -1802,7 +1802,7 @@ impl Engine {
///
/// let engine = Engine::new();
///
/// let ast = engine.compile(r"
/// let ast = engine.compile("
/// fn add(x, y) { len(x) + y + foo }
/// fn add1(x) { len(x) + 1 + foo }
/// fn bar() { foo/2 }
@@ -1873,7 +1873,7 @@ impl Engine {
///
/// let engine = Engine::new();
///
/// let ast = engine.compile(r"
/// let ast = engine.compile("
/// fn add(x, y) { len(x) + y + foo }
/// fn add1(x) { len(x) + 1 + foo }
/// fn bar() { foo/2 }