From 716d7252a32edb8a13ebbf8a6e9002e17ac4d433 Mon Sep 17 00:00:00 2001 From: Kai O'Reilly Date: Sat, 9 Mar 2024 14:38:01 -0800 Subject: [PATCH] doc updates --- egui/README.md | 6 +++--- elog/README.md | 2 +- stepper/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/egui/README.md b/egui/README.md index 3dbc56e4..1a6c42af 100644 --- a/egui/README.md +++ b/egui/README.md @@ -6,11 +6,11 @@ The [ra25](https://github.com/emer/axon/tree/master/examples/ra25) example has a # Examples -Here's the start of the main ConfigGui method: +Here's the start of the main ConfigGUI method: ```Go -// ConfigGui configures the GoGi gui interface for this simulation, -func (ss *Sim) ConfigGui() *gi.Window { +// ConfigGUI configures the Cogent Core GUI interface for this simulation. +func (ss *Sim) ConfigGUI() *gi.Window { title := "Leabra Random Associator" ss.GUI.MakeWindow(ss, "ra25", title, `This demonstrates a basic Leabra model. See emergent on GitHub.

`) ss.GUI.CycleUpdateInterval = 10 diff --git a/elog/README.md b/elog/README.md index e3b8ce95..c22f8c33 100644 --- a/elog/README.md +++ b/elog/README.md @@ -401,7 +401,7 @@ First, initialize the ActRFs in the `ConfigLogs` function, using strings that sp ss.Stats.InitActRFs(ss.Net, []string{"V4:Image", "V4:Output", "IT:Image", "IT:Output"}, "ActM") ``` -To add tabs in the gui to visualize the resulting RFs, add this in your `ConfigGui` (note also adding a tab to visualize the input Image that is being presented to the network): +To add tabs in the gui to visualize the resulting RFs, add this in your `ConfigGUI` (note also adding a tab to visualize the input Image that is being presented to the network): ```Go tg := ss.GUI.TabView.AddNewTab(etview.KiT_TensorGrid, "Image").(*etview.TensorGrid) diff --git a/stepper/README.md b/stepper/README.md index b267a382..d3148527 100644 --- a/stepper/README.md +++ b/stepper/README.md @@ -115,7 +115,7 @@ and (optionally) `stepper.StopCheckFn` functions: 8. Add code to the user interface to start, pause, and stop the simulation: ```go - func (ss *Sim) ConfigGui() *gi.Window { + func (ss *Sim) ConfigGUI() *gi.Window { ... tbar.AddAction(gi.ActOpts{Label: "Stop", Icon: "stop", Tooltip: "Stop the current program at its next natural stopping point (i.e., cleanly stopping when appropriate chunks of computation have completed).",