Fix typo on notebook cell (#200)

Fix typo on notebook cell
This commit is contained in:
Cheng Zhe 2021-04-16 14:05:35 +08:00 committed by GitHub
parent 101f582196
commit f06891cd6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@ defmodule Livebook.Notebook.Cell do
# Data structure representing a single cell in a notebook.
#
# A cell is the smallest unit of work in a notebook.
# It primarly consists of text content that the user can edit
# It primarily consists of text content that the user can edit
# and may potentially produce some output (e.g. during code evaluation).
defstruct [:id, :type, :source, :outputs, :metadata]