From 6cc7d0b13ed91420d203f0d863483996ae742096 Mon Sep 17 00:00:00 2001 From: Revon Mathews Date: Tue, 31 Jan 2017 15:23:21 -0600 Subject: [PATCH] Fixes typo in syntax of DataTables row_actions Replaces the '-' with '=' in the line listing row_actions for the DataTale. Change-Id: Id5c6bdee0695e3db7b021bbf899f7ebcabe55fd5 --- doc/source/ref/tables.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/ref/tables.rst b/doc/source/ref/tables.rst index b2f22d896a..99f4163d8f 100644 --- a/doc/source/ref/tables.rst +++ b/doc/source/ref/tables.rst @@ -28,7 +28,7 @@ represented. Example:: class Meta(object): name = "my_table" table_actions = (MyAction, MyOtherAction) - row_actions - (MyAction) + row_actions = (MyAction) A full reference is included below: