summaryrefslogtreecommitdiff
path: root/candle-book/src/guide/hello_world.md
diff options
context:
space:
mode:
Diffstat (limited to 'candle-book/src/guide/hello_world.md')
-rw-r--r--candle-book/src/guide/hello_world.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-book/src/guide/hello_world.md b/candle-book/src/guide/hello_world.md
index 5b32181d..fc4af0e1 100644
--- a/candle-book/src/guide/hello_world.md
+++ b/candle-book/src/guide/hello_world.md
@@ -147,7 +147,7 @@ And rewrite our examples using it
# extern crate candle_core;
# extern crate candle_nn;
use candle_core::{DType, Device, Result, Tensor};
-use candle_nn::Linear;
+use candle_nn::{Linear, Module};
struct Model {
first: Linear,