Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
just a letter missed in multiply...no big deal...
  • Loading branch information
rajarahulray authored Mar 25, 2017
commit d8545900d8456f41c251212590da61172e8f3c14
2 changes: 1 addition & 1 deletion examples/1_Introduction/basic_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

# Define some operations
add = tf.add(a, b)
mul = tf.muliply(a, b)
mul = tf.multiply(a, b)

# Launch the default graph.
with tf.Session() as sess:
Expand Down