emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/drepl 3b8c4697dd 8/9: Refine header and commentary sect


From: ELPA Syncer
Subject: [elpa] externals/drepl 3b8c4697dd 8/9: Refine header and commentary section
Date: Thu, 4 Apr 2024 15:57:57 -0400 (EDT)

branch: externals/drepl
commit 3b8c4697dda937c39496d67bc4804bf7d0c12812
Author: Augusto Stoffel <arstoffel@gmail.com>
Commit: Augusto Stoffel <arstoffel@gmail.com>

    Refine header and commentary section
---
 drepl-ipython.el |  7 +++----
 drepl-lua.el     |  6 +++---
 drepl.el         | 17 +++++++++--------
 3 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/drepl-ipython.el b/drepl-ipython.el
index ad42935011..08d9783174 100644
--- a/drepl-ipython.el
+++ b/drepl-ipython.el
@@ -1,4 +1,4 @@
-;;; drepl.el --- REPL protocol for the dumb terminal   -*- lexical-binding: t; 
-*-
+;;; drepl-ipython.el --- Python shell based on IPython  -*- lexical-binding: 
t; -*-
 
 ;; Copyright (C) 2023  Free Software Foundation, Inc.
 
@@ -21,9 +21,8 @@
 
 ;;; Commentary:
 
-;; This file defines a REPL based on the IPython interpreter.  It
-;; depends on Python and the ipython package, which can be installed
-;; with `pip install ipython'.
+;; This file defines a Python shell based on the IPython package.  The
+;; dependencies can be installed with `pip install ipython'.
 
 ;;; Code:
 
diff --git a/drepl-lua.el b/drepl-lua.el
index 604dc3e7cb..b656c39b26 100644
--- a/drepl-lua.el
+++ b/drepl-lua.el
@@ -1,4 +1,4 @@
-;;; drepl.el --- REPL protocol for the dumb terminal   -*- lexical-binding: t; 
-*-
+;;; drepl-lua.el --- Lua shell based on the luarepl library  -*- 
lexical-binding: t; -*-
 
 ;; Copyright (C) 2023  Free Software Foundation, Inc.
 
@@ -21,8 +21,8 @@
 
 ;;; Commentary:
 
-;; This file defines a REPL for Lua.  The required Lua packages can be
-;; installed with `luarocks install dkjson luarepl'.
+;; This file defines a shell for the Lua language.  The required Lua
+;; packages can be installed with `luarocks install dkjson luarepl'.
 
 ;;; Code:
 
diff --git a/drepl.el b/drepl.el
index 8151172ae5..8de244041f 100644
--- a/drepl.el
+++ b/drepl.el
@@ -25,14 +25,15 @@
 
 ;; dREPL is a collection of fully featured language shells for Emacs
 ;; built on top of Comint.  It can be described as a REPL protocol for
-;; the dumb terminal.  This file defines the user interface and a base
-;; EIEIO class for client code.  The other files in this package
-;; define REPLs for specific interpreters.  Each of them is comprised
-;; of one Elisp file defining a REPL subclass and one file in the
-;; target programming language implementing the server side of the
-;; protocol.
-
-;; See the README for a description of the communication protocol.
+;; the dumb terminal.  This file provides a base protocol
+;; implementation as well as the user interface.  The other files in
+;; this package define REPLs for specific interpreters.  Each of them
+;; is comprised of one Elisp file defining a REPL subclass and one
+;; file in the target programming language implementing the server
+;; side of the protocol.
+;;
+;; See the package README for a description of the communication
+;; protocol that needs to be implemented on the interpreter side.
 
 ;;; Code:
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]