From f06891cd6dcd8cccb42ac12265b7875cbdfbba28 Mon Sep 17 00:00:00 2001 From: Cheng Zhe Date: Fri, 16 Apr 2021 14:05:35 +0800 Subject: [PATCH] Fix typo on notebook cell (#200) Fix typo on notebook cell --- lib/livebook/notebook/cell.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/livebook/notebook/cell.ex b/lib/livebook/notebook/cell.ex index 97abee013..3a0978bfe 100644 --- a/lib/livebook/notebook/cell.ex +++ b/lib/livebook/notebook/cell.ex @@ -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]