📚 Updated docs to Penpot

This commit is contained in:
alonso.torres 2020-10-28 09:34:47 +01:00
parent 154b58057a
commit 8fa0a039c4
4 changed files with 8 additions and 8 deletions

View file

@ -1,6 +1,6 @@
# Developer Guide #
This is a generic "getting started" guide for the uxbox platform. It
This is a generic "getting started" guide for the Penpot platform. It
intends to explain how to get the development environment up and
running with many additional tips.
@ -148,7 +148,7 @@ For more information, please refer to: `03-Backend-Guide.md`.
## Start the testenv ##
The purpose of the testenv (Test Environment) is provide an easy way
to get uxbox running in local pc without getting into the full
to get Penpot running in local pc without getting into the full
development environment.
As first step we still need to build devenv image because that image

View file

@ -124,7 +124,7 @@ Some keys ara treated as special cases for helping in debugging:
## Access to clojure from javascript console
The uxbox namespace of the main application is exported, so that is
The penpot namespace of the main application is exported, so that is
accessible from javascript console in Chrome developer tools. Object
names and data types are converted to javascript style. For example
you can emit the event to reset zoom level by typing this at the

View file

@ -6,7 +6,7 @@ and backend, such as: code style hints, architecture dicisions, etc...
## Assertions ##
UXBOX source code has this types of assertions:
Penpot source code has this types of assertions:
**assert**: just using the clojure builtin `assert` macro.
@ -55,7 +55,7 @@ This macro enables you have assetions on production code.
**Why don't use the `clojure.spec.alpha/assert` instead of the `app.common.spec/assert`?**
The uxbox variant does not peforms additional runtime checks for know
The Penpot variant does not peforms additional runtime checks for know
if asserts are disabled in "runtime". As a result it generates much
simplier code at development and production builds.