Fix links to dev documentation (#5617)

Closes #5555

Update all `dev.enso.org/docs` links.
This commit is contained in:
Dmitry Bushev 2023-02-11 05:19:41 +03:00 committed by GitHub
parent 7abc281bd8
commit 6971dd0850
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
//! Client library for the JSON-RPC-based Project Manager service. //! Client library for the JSON-RPC-based Project Manager service.
//! //!
//! The all methods and types are derived from Engine RPC API described //! The all methods and types are derived from Engine RPC API described
//! here https://dev.enso.org/docs/enso/language-server/protocol-project-manager.html //! here https://enso.org/docs/developer/enso/language-server/protocol-project-manager.html
//FIXME: We need to review the structures' names in Enso Protocol specification //FIXME: We need to review the structures' names in Enso Protocol specification
// https://github.com/enso-org/enso/issues/708 // https://github.com/enso-org/enso/issues/708

View File

@ -21,7 +21,7 @@ pub mod skip_and_freeze;
// ================================== // ==================================
/// The keyword introducing an qualified import declaration. See: /// The keyword introducing an qualified import declaration. See:
/// https://dev.enso.org/docs/enso/syntax/imports.html#import-syntax /// https://enso.org/docs/developer/enso/syntax/imports.html#import-syntax
pub const QUALIFIED_IMPORT_KEYWORD: &str = "import"; pub const QUALIFIED_IMPORT_KEYWORD: &str = "import";
/// The keyword introducing an unqualified import declaration. /// The keyword introducing an unqualified import declaration.

View File

@ -26,7 +26,7 @@ use crate::Shape;
// ================= // =================
/// Symbols that can appear in operator name, as per /// Symbols that can appear in operator name, as per
/// https://dev.enso.org/docs/enso/syntax/naming.html#operator-naming /// https://enso.org/docs/developer/enso/syntax/naming.html#operator-naming
pub const SYMBOLS: [char; 25] = [ pub const SYMBOLS: [char; 25] = [
'!', '$', '%', '&', '*', '+', '-', '/', '<', '>', '?', '^', '~', '|', ':', '\\', ',', '.', '(', '!', '$', '%', '&', '*', '+', '-', '/', '<', '>', '?', '^', '~', '|', ':', '\\', ',', '.', '(',
')', '[', ']', '{', '}', '=', ')', '[', ']', '{', '}', '=',

View File

@ -153,7 +153,7 @@ pub struct Frp {
/// This event should be emitted to set a new code of the preprocessor. The preprocessor is /// This event should be emitted to set a new code of the preprocessor. The preprocessor is
/// a function called on the Engine side before sending data to IDE, allowing us to do some /// a function called on the Engine side before sending data to IDE, allowing us to do some
/// compression or filtering for the best performance. See also _Lazy Visualization_ section /// compression or filtering for the best performance. See also _Lazy Visualization_ section
/// [here](http://dev.enso.org/docs/ide/product/visualizations.html). /// [here](https://enso.org/docs/developer/ide/product/visualizations.html).
pub preprocessor_change: frp::Any<PreprocessorConfiguration>, pub preprocessor_change: frp::Any<PreprocessorConfiguration>,
} }

View File

@ -11,7 +11,7 @@ use crate::component::visualization;
pub struct Metadata { pub struct Metadata {
/// An Enso lambda, called on the Engine side before sending data to IDE, allowing us to do /// An Enso lambda, called on the Engine side before sending data to IDE, allowing us to do
/// some compression or filtering for the best performance. See also _Lazy Visualization_ /// some compression or filtering for the best performance. See also _Lazy Visualization_
/// section [here](http://dev.enso.org/docs/ide/product/visualizations.html). /// section [here](https://enso.org/docs/developer/ide/product/visualizations.html).
pub preprocessor: visualization::instance::PreprocessorConfiguration, pub preprocessor: visualization::instance::PreprocessorConfiguration,
} }